home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / tools / amiga / 3d_tools / irit40s.lha / Irit / illustrt / makefile.unx < prev    next >
Encoding:
Makefile  |  1993-12-30  |  410 b   |  21 lines

  1. #
  2. # Makefile for the ILLUSTRT program.
  3. #
  4. #                    Gershon Elber, June 1993
  5. #
  6.  
  7. include ../makeflag.unx
  8.  
  9. OBJECTS    = illustrt.o intersct.o spltsort.o
  10.  
  11. illustrt:    $(OBJECTS)
  12.     $(CC) $(CFLAGS) -o illustrt $(OBJECTS) $(LIBS) $(MORELIBS) -lm
  13.  
  14. install: illustrt
  15.     mv -f illustrt $(BIN_DIR)
  16.  
  17. # Dependencies starts here - do not touch, generated automatically.
  18. illustrt.o:    program.h
  19. intersct.o:    program.h
  20. spltsort.o:    program.h
  21.